home *** CD-ROM | disk | FTP | other *** search
- /****************************************************************************************
- AutoPort.h
-
- Copyright © 1999 Red Shed Software. All rights reserved.
- by Jonathan 'Wolf' Rentzsch (jon@redshed.net)
-
- Commenter Date Comment
- --------- ----------------- -----------------------------------------------------
- wolf Thu, Jun 24, 1999 Created.
-
- ************************************************************************************/
-
- #ifndef _AutoPort_
- #define _AutoPort_
-
- class AutoPort {
- public:
- AutoPort(
- WindowPtr newPort )
- { GetPort( &oldPort_ );
- SetPort( newPort ); }
-
- ~AutoPort()
- { SetPort( oldPort_ ); }
- private:
- WindowPtr oldPort_;
- };
-
- #endif // _AutoPort_